qacli export Examples

Export Sample CCTs

To export the CCTs for a particular project then issue a command such as:

qacli export -P . -t CCT -C PROJECT

This assumes you are located in the same directory as the project and the resulting output file will be given a default name - based upon the name of the parent folder and ending in ’.zip_cct’.

For a project with multiple configurations:

qacli export -P /home/bill/sample -t CCT -C PROJECT -K other_config my_ccts.zip_cct

This version gives the absolute path to the project and exports the CCTs (from the ’other_config’) and outputs it all into the file ’my_ccts.zip_cct’.

Export CCTs from User Data Location

To export all the CCTs for your user data location then issue a command such as:

qacli export -t CCT -C LOCAL

Again, if not specified the output will be to a default name (LOCAL.zip_cct)

You can also specify a location to extract the CCTs from (perhaps you have a directory that stores a family of CCTs specific to your setup):

qacli export -t CCT -C USER -u /home/bill/my_ccts

So all CCTs in that directory will be exported to a default name (USER.zip_cct)

Copy CCT from One Project to Another

To copy a CCT from an existing project into another project first export it:

qacli export -t CCT -C PROJECT -P /home/j_wick/project_1 my_ccts.zip_cct

and then import it:

qacli import -t CCT -C PROJECT -P /home/j_wick/project_2 my_ccts.zip_cct